Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GcBitmap Class / Load Method / Load(Byte[],Int32,Nullable<Rectangle>) Method
The image data.
Index of an image frame to read, pass 0 for image formats not supporting multiple frames.
Clipping rectangle of the image to be loaded.

In This Topic
    Load(Byte[],Int32,Nullable<Rectangle>) Method
    In This Topic
    Loads the image from a byte array. JPEG, PNG, WEBP, GIF, BMP, TIFF, ICO, JPEG 2000 formats are supported.
    Syntax
    'Declaration
     
    Public Overloads Sub Load( _
       ByVal bytes() As System.Byte, _
       Optional ByVal frameIndex As System.Integer, _
       Optional ByVal imageRect As System.Nullable(Of Rectangle) _
    ) 
    public void Load( 
       System.byte[] bytes,
       System.int frameIndex,
       System.Nullable<Rectangle> imageRect
    )

    Parameters

    bytes
    The image data.
    frameIndex
    Index of an image frame to read, pass 0 for image formats not supporting multiple frames.
    imageRect
    Clipping rectangle of the image to be loaded.
    See Also